/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header img {
    display: block;
    margin: 0.5rem auto;
}

/* Typography */
h2, h3 {
    text-align: center;
    margin: 1rem 0;
}

p {
    margin: 0.75rem 0;
}

.spacer {
    text-align: center;
    font-size: 1.5rem;
}

/* Contact Block */
.contact-block {
    text-align: center;
    margin-bottom: 2rem;
}

/* Staff Entries */
.staff-list {
    margin-top: 2rem;
}

.staff-entry {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
}

.back-link {
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}